home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 19 / Amiga Plus Leser CD 19.iso / Tools / Freeware / Swf_Player / Lib / Makefile < prev    next >
Encoding:
Makefile  |  2002-11-17  |  1.5 KB  |  65 lines

  1. #-----------------------------------------------------------------------------
  2.  
  3. NET_INCLUDE = Langages:Sources/AWeb/AmiTCP-SDK-4.3/netinclude
  4. AMISSL_INCLUDE = Langages:Sources/AWeb/AmiSSLSDK/include
  5. MIAMISSL =
  6. MIAMISSL_INCLUDE = include/miami
  7. INET225_INCLUDE = Langages:Sources/AWeb/INetSDK/include
  8.  
  9. #-----------------------------------------------------------------------------
  10. CPPFLAGS=-I. -IJpeg -IZlib -I/ADE/Include -I$(INET225_INCLUDE) -I/Include
  11. # Comment out the following line if you use egcs :
  12. CXXFLAGS=-O3 -Wall -ffast-math -funroll-loops -m68020-40 -fomit-frame-pointer 
  13.  
  14. INCLUDES= adpcm.h        cxform.h       graphic.h      script.h       sqrt.h\
  15.     bitmap.h       displaylist.h  matrix.h       shape.h        swf.h\
  16.     button.h       flash.h        program.h      sound.h        text.h\
  17.     character.h    font.h         rect.h         sprite.h    movie.h
  18.  
  19.  
  20. SWFOBJS=\
  21.     flash.o \
  22.     character.o \
  23.     shape.o \
  24.     button.o \
  25.     program.o \
  26.     bitmap.o \
  27.     displaylist.o \
  28.     font.o \
  29.     graphic.o \
  30.     text.o \
  31.     matrix.o \
  32.     script.o \
  33.     sound.o \
  34.     sprite.o \
  35.     movie.o \
  36.     cxform.o \
  37.     adpcm.o \
  38.     sqrt.o \
  39.     graphic16.o \
  40.     graphic24.o \
  41.     graphic32.o \
  42.     jpeg/libjpeg.a \
  43.     Zlib/libz.a
  44.  
  45. #    bitstream.o
  46. #    dump.o
  47.  
  48. all: libflash.a
  49.  
  50. libflash.a: $(SWFOBJS) 
  51.     ar rcs $@ $(SWFOBJS)
  52.  
  53. Jpeg/libjpeg.a:
  54.     cd Jpeg; $(MAKE)
  55.  
  56. Zlib/libz.a:
  57.     cd Zlib; $(MAKE)
  58.  
  59. $(SWFOBJS): $(INCLUDES)
  60.  
  61. clean:
  62.     rm -f $(SWFOBJS) *~ libflash.a
  63.  
  64. .PHONY: plugin jpeg all
  65.